2025-04-02 02:43:33,963 [ 366870 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-04-02 02:43:33,963 [ 366870 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:97, check_args_and_update_paths) 2025-04-02 02:43:33,963 [ 366870 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:108, check_args_and_update_paths) 2025-04-02 02:43:33,963 [ 366870 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:110, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_aff6tg --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=8b2301119731 -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=2 --color=no --durations=0 test_input_format_parallel_parsing_memory_tracking/test.py::test_memory_tracking_total test_jdbc_bridge/test.py::test_jdbc_delete test_jdbc_bridge/test.py::test_jdbc_distributed_query test_jdbc_bridge/test.py::test_jdbc_insert test_jdbc_bridge/test.py::test_jdbc_query test_jdbc_bridge/test.py::test_jdbc_table_engine test_jdbc_bridge/test.py::test_jdbc_update -vvv -ss" altinityinfra/integration-tests-runner:2165613c5fcd '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False collecting ... collected 7 items test_input_format_parallel_parsing_memory_tracking/test.py::test_memory_tracking_total Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml SKIPPED test_jdbc_bridge/test.py::test_jdbc_delete Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ERROR test_jdbc_bridge/test.py::test_jdbc_distributed_query ERROR test_jdbc_bridge/test.py::test_jdbc_insert ERROR test_jdbc_bridge/test.py::test_jdbc_query ERROR test_jdbc_bridge/test.py::test_jdbc_table_engine ERROR test_jdbc_bridge/test.py::test_jdbc_update ERROR ==================================== ERRORS ==================================== ______________________ ERROR at setup of test_jdbc_delete ______________________ @pytest.fixture(scope="module") def started_cluster(): try: > cluster.start() test_jdbc_bridge/test.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:2718: in start retry(log_function=logging_pulling_images)(run_and_check, images_pull_cmd) helpers/retry_decorator.py:27: in inner raise e helpers/retry_decorator.py:20: in inner func(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env', '--project-name', 'roottestjdbcbridge', ...] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling E instance Pulling E instance Pulled E bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied E Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied helpers/cluster.py:152: Exception ------------------------------ Captured log setup ------------------------------ 2025-04-02 02:43:53 [ 666 ] INFO : Running tests in /ClickHouse/tests/integration/test_jdbc_bridge/test.py (cluster.py:2677, start) 2025-04-02 02:43:53 [ 666 ] DEBUG : Cluster start called. is_up=False (cluster.py:2684, start) 2025-04-02 02:43:53 [ 666 ] DEBUG : Docker networks for project roottestjdbcbridge are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 02:43:53 [ 666 ] DEBUG : Docker containers for project roottestjdbcbridge are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 02:43:53 [ 666 ] DEBUG : Docker volumes for project roottestjdbcbridge are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 02:43:53 [ 666 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : Docker networks for project roottestjdbcbridge are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 02:43:53 [ 666 ] DEBUG : Docker containers for project roottestjdbcbridge are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 02:43:53 [ 666 ] DEBUG : Docker volumes for project roottestjdbcbridge are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 02:43:53 [ 666 ] DEBUG : Command:[docker container list --all --filter name='^/roottestjdbcbridge-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:120, run_and_check) 2025-04-02 02:43:53 [ 666 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : No running containers for project: roottestjdbcbridge (cluster.py:904, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : Command:[docker image prune -f] (cluster.py:120, run_and_check) 2025-04-02 02:43:53 [ 666 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:144, run_and_check) 2025-04-02 02:43:53 [ 666 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:120, run_and_check) 2025-04-02 02:43:53 [ 666 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 02:43:53 [ 666 ] DEBUG : Volumes pruned: 1 (cluster.py:940, cleanup) 2025-04-02 02:43:53 [ 666 ] DEBUG : Setup directory for instance: instance (cluster.py:2697, start) 2025-04-02 02:43:53 [ 666 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4530, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Create directory for common tests configuration (cluster.py:4535, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Copy common configuration from helpers (cluster.py:4555, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Generate and write macros file (cluster.py:4607, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_jdbc_bridge/configs/jdbc_bridge.xml'] to /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/configs/config.d (cluster.py:4643, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/database (cluster.py:4660, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/logs (cluster.py:4671, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4752, create_dir) 2025-04-02 02:43:53 [ 666 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'JDBC_DRIVER_LOGS': '/ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/jdbc_driver/logs', 'JDBC_DRIVER_FS': 'bind'} stored in /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env (cluster.py:95, _create_env_file) 2025-04-02 02:43:53 [ 666 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-04-02 02:43:53 [ 666 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-04-02 02:43:53 [ 666 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-04-02 02:43:53 [ 666 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-04-02 02:43:53 [ 666 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-04-02 02:43:53 [ 666 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] (cluster.py:120, run_and_check) 2025-04-02 02:44:47 [ 666 ] DEBUG : Stderr: bridge1 Pulling (cluster.py:146, run_and_check) 2025-04-02 02:44:47 [ 666 ] DEBUG : Stderr: instance Pulling (cluster.py:146, run_and_check) 2025-04-02 02:44:47 [ 666 ] DEBUG : Stderr: instance Pulled (cluster.py:146, run_and_check) 2025-04-02 02:44:47 [ 666 ] DEBUG : Stderr: bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:44:47 [ 666 ] DEBUG : Stderr:Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:44:47 [ 666 ] DEBUG : Exitcode:18 (cluster.py:148, run_and_check) 2025-04-02 02:44:47 [ 666 ] INFO : Got exception pulling images: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling instance Pulling instance Pulled bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:2714, logging_pulling_images) 2025-04-02 02:44:50 [ 666 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] (cluster.py:120, run_and_check) 2025-04-02 02:45:43 [ 666 ] DEBUG : Stderr: instance Pulling (cluster.py:146, run_and_check) 2025-04-02 02:45:43 [ 666 ] DEBUG : Stderr: bridge1 Pulling (cluster.py:146, run_and_check) 2025-04-02 02:45:43 [ 666 ] DEBUG : Stderr: instance Pulled (cluster.py:146, run_and_check) 2025-04-02 02:45:43 [ 666 ] DEBUG : Stderr: bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:45:43 [ 666 ] DEBUG : Stderr:Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:45:43 [ 666 ] DEBUG : Exitcode:18 (cluster.py:148, run_and_check) 2025-04-02 02:45:43 [ 666 ] INFO : Got exception pulling images: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: instance Pulling bridge1 Pulling instance Pulled bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:2714, logging_pulling_images) 2025-04-02 02:45:46 [ 666 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] (cluster.py:120, run_and_check) 2025-04-02 02:46:40 [ 666 ] DEBUG : Stderr: instance Pulling (cluster.py:146, run_and_check) 2025-04-02 02:46:40 [ 666 ] DEBUG : Stderr: bridge1 Pulling (cluster.py:146, run_and_check) 2025-04-02 02:46:40 [ 666 ] DEBUG : Stderr: instance Pulled (cluster.py:146, run_and_check) 2025-04-02 02:46:40 [ 666 ] DEBUG : Stderr: bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:46:40 [ 666 ] DEBUG : Stderr:Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:46:40 [ 666 ] DEBUG : Exitcode:18 (cluster.py:148, run_and_check) 2025-04-02 02:46:40 [ 666 ] INFO : Got exception pulling images: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: instance Pulling bridge1 Pulling instance Pulled bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:2714, logging_pulling_images) 2025-04-02 02:46:43 [ 666 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] (cluster.py:120, run_and_check) 2025-04-02 02:47:37 [ 666 ] DEBUG : Stderr: bridge1 Pulling (cluster.py:146, run_and_check) 2025-04-02 02:47:37 [ 666 ] DEBUG : Stderr: instance Pulling (cluster.py:146, run_and_check) 2025-04-02 02:47:37 [ 666 ] DEBUG : Stderr: instance Pulled (cluster.py:146, run_and_check) 2025-04-02 02:47:37 [ 666 ] DEBUG : Stderr: bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:47:37 [ 666 ] DEBUG : Stderr:Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:47:37 [ 666 ] DEBUG : Exitcode:18 (cluster.py:148, run_and_check) 2025-04-02 02:47:37 [ 666 ] INFO : Got exception pulling images: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling instance Pulling instance Pulled bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:2714, logging_pulling_images) 2025-04-02 02:47:41 [ 666 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] (cluster.py:120, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Stderr: bridge1 Pulling (cluster.py:146, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Stderr: instance Pulling (cluster.py:146, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Stderr: instance Pulled (cluster.py:146, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Stderr: bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Stderr:Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:146, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Exitcode:18 (cluster.py:148, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Failed to start cluster: (cluster.py:3096, start) 2025-04-02 02:48:36 [ 666 ] DEBUG : Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling instance Pulling instance Pulled bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:3097, start) 2025-04-02 02:48:36 [ 666 ] DEBUG : Traceback (most recent call last): File "/ClickHouse/tests/integration/helpers/cluster.py", line 2718, in start retry(log_function=logging_pulling_images)(run_and_check, images_pull_cmd) File "/ClickHouse/tests/integration/helpers/retry_decorator.py", line 27, in inner raise e File "/ClickHouse/tests/integration/helpers/retry_decorator.py", line 20, in inner func(*args, **kwargs) File "/ClickHouse/tests/integration/helpers/cluster.py", line 152, in run_and_check raise Exception( Exception: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling instance Pulling instance Pulled bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (cluster.py:3098, start) 2025-04-02 02:48:36 [ 666 ] WARNING : docker compose up was not called. Trying to export docker.log for running containers (cluster.py:3179, shutdown) 2025-04-02 02:48:36 [ 666 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Docker networks for project roottestjdbcbridge are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 02:48:36 [ 666 ] DEBUG : Docker containers for project roottestjdbcbridge are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 02:48:36 [ 666 ] DEBUG : Docker volumes for project roottestjdbcbridge are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 02:48:36 [ 666 ] DEBUG : Command:[docker container list --all --filter name='^/roottestjdbcbridge-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:120, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : No running containers for project: roottestjdbcbridge (cluster.py:904, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Command:[docker image prune -f] (cluster.py:120, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:144, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:120, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Volumes pruned: 1 (cluster.py:940, cleanup) 2025-04-02 02:48:36 [ 666 ] WARNING : docker compose up was not called. Trying to export docker.log for running containers (cluster.py:3179, shutdown) 2025-04-02 02:48:36 [ 666 ] DEBUG : Cleanup called (cluster.py:876, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Docker networks for project roottestjdbcbridge are NETWORK ID NAME DRIVER SCOPE (cluster.py:855, print_all_docker_pieces) 2025-04-02 02:48:36 [ 666 ] DEBUG : Docker containers for project roottestjdbcbridge are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:863, print_all_docker_pieces) 2025-04-02 02:48:36 [ 666 ] DEBUG : Docker volumes for project roottestjdbcbridge are DRIVER VOLUME NAME (cluster.py:871, print_all_docker_pieces) 2025-04-02 02:48:36 [ 666 ] DEBUG : Command:[docker container list --all --filter name='^/roottestjdbcbridge-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:120, run_and_check) 2025-04-02 02:48:36 [ 666 ] DEBUG : Unstopped containers: {} (cluster.py:890, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : No running containers for project: roottestjdbcbridge (cluster.py:904, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Trying to prune unused networks... (cluster.py:910, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Trying to prune unused images... (cluster.py:926, cleanup) 2025-04-02 02:48:36 [ 666 ] DEBUG : Command:[docker image prune -f] (cluster.py:120, run_and_check) 2025-04-02 02:48:37 [ 666 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:144, run_and_check) 2025-04-02 02:48:37 [ 666 ] DEBUG : Images pruned (cluster.py:929, cleanup) 2025-04-02 02:48:37 [ 666 ] DEBUG : Trying to prune unused volumes... (cluster.py:935, cleanup) 2025-04-02 02:48:37 [ 666 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:120, run_and_check) 2025-04-02 02:48:37 [ 666 ] DEBUG : Stdout:1 (cluster.py:144, run_and_check) 2025-04-02 02:48:37 [ 666 ] DEBUG : Volumes pruned: 1 (cluster.py:940, cleanup) ________________ ERROR at setup of test_jdbc_distributed_query _________________ @pytest.fixture(scope="module") def started_cluster(): try: > cluster.start() test_jdbc_bridge/test.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:2718: in start retry(log_function=logging_pulling_images)(run_and_check, images_pull_cmd) helpers/retry_decorator.py:27: in inner raise e helpers/retry_decorator.py:20: in inner func(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env', '--project-name', 'roottestjdbcbridge', ...] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling E instance Pulling E instance Pulled E bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied E Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied helpers/cluster.py:152: Exception ______________________ ERROR at setup of test_jdbc_insert ______________________ @pytest.fixture(scope="module") def started_cluster(): try: > cluster.start() test_jdbc_bridge/test.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:2718: in start retry(log_function=logging_pulling_images)(run_and_check, images_pull_cmd) helpers/retry_decorator.py:27: in inner raise e helpers/retry_decorator.py:20: in inner func(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env', '--project-name', 'roottestjdbcbridge', ...] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling E instance Pulling E instance Pulled E bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied E Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied helpers/cluster.py:152: Exception ______________________ ERROR at setup of test_jdbc_query _______________________ @pytest.fixture(scope="module") def started_cluster(): try: > cluster.start() test_jdbc_bridge/test.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:2718: in start retry(log_function=logging_pulling_images)(run_and_check, images_pull_cmd) helpers/retry_decorator.py:27: in inner raise e helpers/retry_decorator.py:20: in inner func(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env', '--project-name', 'roottestjdbcbridge', ...] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling E instance Pulling E instance Pulled E bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied E Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied helpers/cluster.py:152: Exception ___________________ ERROR at setup of test_jdbc_table_engine ___________________ @pytest.fixture(scope="module") def started_cluster(): try: > cluster.start() test_jdbc_bridge/test.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:2718: in start retry(log_function=logging_pulling_images)(run_and_check, images_pull_cmd) helpers/retry_decorator.py:27: in inner raise e helpers/retry_decorator.py:20: in inner func(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env', '--project-name', 'roottestjdbcbridge', ...] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling E instance Pulling E instance Pulled E bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied E Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied helpers/cluster.py:152: Exception ______________________ ERROR at setup of test_jdbc_update ______________________ @pytest.fixture(scope="module") def started_cluster(): try: > cluster.start() test_jdbc_bridge/test.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:2718: in start retry(log_function=logging_pulling_images)(run_and_check, images_pull_cmd) helpers/retry_decorator.py:27: in inner raise e helpers/retry_decorator.py:20: in inner func(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'compose', '--env-file', '/ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env', '--project-name', 'roottestjdbcbridge', ...] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker compose --env-file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/.env --project-name roottestjdbcbridge --file /ClickHouse/tests/integration/test_jdbc_bridge/_instances-2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_jdbc_bridge.yml pull] return non-zero code 18: bridge1 Pulling E instance Pulling E instance Pulled E bridge1 Error pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied E Error response from daemon: pull access denied for altinityinfra/jdbc-bridge, repository does not exist or may require 'docker login': denied: requested access to the resource is denied helpers/cluster.py:152: Exception ============================== slowest durations =============================== 283.95s setup test_jdbc_bridge/test.py::test_jdbc_delete 13.35s setup test_input_format_parallel_parsing_memory_tracking/test.py::test_memory_tracking_total 1.46s teardown test_input_format_parallel_parsing_memory_tracking/test.py::test_memory_tracking_total 0.27s call test_input_format_parallel_parsing_memory_tracking/test.py::test_memory_tracking_total 0.00s teardown test_jdbc_bridge/test.py::test_jdbc_update 0.00s teardown test_jdbc_bridge/test.py::test_jdbc_delete 0.00s setup test_jdbc_bridge/test.py::test_jdbc_query 0.00s setup test_jdbc_bridge/test.py::test_jdbc_distributed_query 0.00s setup test_jdbc_bridge/test.py::test_jdbc_table_engine 0.00s teardown test_jdbc_bridge/test.py::test_jdbc_insert 0.00s setup test_jdbc_bridge/test.py::test_jdbc_insert 0.00s setup test_jdbc_bridge/test.py::test_jdbc_update 0.00s teardown test_jdbc_bridge/test.py::test_jdbc_distributed_query 0.00s teardown test_jdbc_bridge/test.py::test_jdbc_table_engine 0.00s teardown test_jdbc_bridge/test.py::test_jdbc_query =========================== short test summary info ============================ ERROR test_jdbc_bridge/test.py::test_jdbc_delete - Exception: Command [docker... ERROR test_jdbc_bridge/test.py::test_jdbc_distributed_query - Exception: Comm... ERROR test_jdbc_bridge/test.py::test_jdbc_insert - Exception: Command [docker... ERROR test_jdbc_bridge/test.py::test_jdbc_query - Exception: Command [docker ... ERROR test_jdbc_bridge/test.py::test_jdbc_table_engine - Exception: Command [... ERROR test_jdbc_bridge/test.py::test_jdbc_update - Exception: Command [docker... SKIPPED [1] test_input_format_parallel_parsing_memory_tracking/test.py:33: Memory tracking does not make sense to check under Thread Sanitizer =================== 1 skipped, 6 errors in 299.72s (0:04:59) =================== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 528, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_aff6tg --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=8b2301119731 -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=caad4729259e -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=2 --color=no --durations=0 test_input_format_parallel_parsing_memory_tracking/test.py::test_memory_tracking_total test_jdbc_bridge/test.py::test_jdbc_delete test_jdbc_bridge/test.py::test_jdbc_distributed_query test_jdbc_bridge/test.py::test_jdbc_insert test_jdbc_bridge/test.py::test_jdbc_query test_jdbc_bridge/test.py::test_jdbc_table_engine test_jdbc_bridge/test.py::test_jdbc_update -vvv -ss" altinityinfra/integration-tests-runner:2165613c5fcd ' returned non-zero exit status 1.